home *** CD-ROM | disk | FTP | other *** search
- @echo off
-
- rem --- L-System Parser/Mutator --- Lj Lapre -------------------------------
- rem
- rem Exec 'mutate ls-file' (without .ls extension!) to get multiple mutations
- rem in an evolutionary chain. Each round one mutation is added to the ls-file.
- rem
- rem Try 'mutate lsys00'
- rem
- rem Mother
- rem │
- rem Child
- rem │
- rem Child
- rem │
- rem Child
- rem │
- rem Etc.
- rem
- rem The form on the screen will be stored in the file mutation.ls.
- rem
- rem The -s500 option is to limit the size off the l-string to 500K.
- rem The -p50000 option is to limit the size off the form to 50000 polygons.
- rem
-
- rem The mother
-
- lparser %1
- lviewer -f output
-
- rem The Children
-
- copy %1.ls mutation.ls
-
- :begin
-
- lparser -s500 -p50000 -u1 mutation
- lviewer -f output
-
- goto begin
-